home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / WIN_PRO / VIEWS.ZIP;1 / CVDZIP.EXE / CVPLATFM.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-12  |  755 b   |  46 lines

  1. /*
  2.     cvplatfm.h
  3.  
  4.     List of platforms window
  5.     
  6.     C++/Views 2.0 Demo
  7.     Copyright (c) 1992, by Liant Software Corp.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12. */
  13.  
  14. #ifndef cvplatfm_h
  15. #define cvplatfm_h
  16. #include "mdiview.h"
  17.  
  18. class VEditBox;
  19. class VFont;
  20. class DemoAppView;
  21.  
  22. class PlatformView : public VMdiView {
  23. private:
  24.     int        platform;
  25.     VEditBox *msgBox;
  26.     VFont    *listFont;
  27.     VFont    *msgFont;
  28.     DemoAppView *mainWin;
  29.  
  30. public:
  31.     PlatformView(VFrame&,  DemoAppView *);
  32.     PlatformView();
  33.     ~PlatformView();
  34.  
  35.     VClass *iam();
  36.     boolean free();
  37.  
  38.     boolean close();
  39.     boolean singleClick(int index);
  40.     boolean doubleClick(int index);
  41.     boolean givenFocus();
  42. };
  43.  
  44. extern VClass *PlatformViewCls;
  45. #endif /* cvplatfm_h */
  46.